home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utilmus / hip223.lha / HippoPlayer / ARexx / HiP_delfile2.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-14  |  459b  |  27 lines

  1. /* HippoPlayer - del file
  2. **
  3. ** This script parses the filename of the played module and then
  4. ** deletes it from the list.
  5. **
  6. ** Written by Marcel Doering [DonDoringo@GURU.rhein-main.de]
  7. */
  8.  
  9. options results
  10.  
  11. address 'HIPPOPLAYER'
  12.  
  13. get cnam
  14. CNAM = result
  15.  
  16. ADDLIB('rexxreqtools.library',0,-30,0)
  17. IF ~EXISTS(cnam) then do
  18. nf=rtezrequest('Couldn`t find 'cnam' !'||'0a'x||'Aborting...','Okay','HiP_copy.rexx',)
  19. exit
  20. end
  21.  
  22. DEL
  23.  
  24. address command 'delete 'cnam''
  25.  
  26. EXIT
  27.